home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / pmake / RCS / rdist.mk,v < prev    next >
Encoding:
Text File  |  1988-03-25  |  787 b   |  46 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @@;
  6.  
  7.  
  8. 1.1
  9. date     88.03.24.19.48.46;  author deboor;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @Makefile for rdisting source back to UNIX
  16. @
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @# For rdist, take the standard makefile and pass in the directory to rdist
  26. # and the name of the binary/binaries not to rdist.
  27. # Allow the user to specify extra flags (like -v) for the rdist via
  28. # the DISTFLAGS variable.
  29.  
  30. DISTFILE     = /sprite/lib/misc/distfile.command
  31. DISTFLAGS     += 
  32. #ifndef DIST_EXCEPT
  33. # ifdef PROG
  34.  DIST_EXCEPT     = -d EXCEPT=\(${PROG}\)
  35. # elifdef PROGRAM
  36.  DIST_EXCEPT    = -d EXCEPT=\(${PROGRAM}\)
  37. # else
  38.  DIST_EXCEPT     =
  39. # endif
  40. #endif
  41.  
  42. Rdist        :: .PRECIOUS .NOTMAIN
  43.     rdist ${DISTFLAGS} -f ${DISTFILE} -d DIR=`pwd` ${DIST_EXCEPT}
  44.  
  45. @
  46.